import { describe, it, expect } from "vitest";
import { {{namePascal}}Form } from "./{{namePascal}}Form";

describe("{{namePascal}}Form", () => {
  it("renders without crashing", () => {
    expect({{namePascal}}Form).toBeDefined();
  });

  // TODO: add form interaction tests with @testing-library/react
});
